home *** CD-ROM | disk | FTP | other *** search
/ Aminet 6 / Aminet 6 - June 1995.iso / Aminet / text / hyper / ADtoHT2_0.lha / ProcessDir.h < prev   
Encoding:
C/C++ Source or Header  |  1995-03-02  |  415 b   |  24 lines

  1. #ifndef PROCESSDIR_H
  2. #define PROCESSDIR_H
  3.  
  4. #ifndef DOS_DOSASL_H
  5. #include <dos/dosasl.h>
  6. #endif
  7.  
  8. #ifndef AVL_H
  9. #include "AVL.h"
  10. #endif
  11.  
  12. extern struct MyAnchorPath
  13. {
  14.   struct AnchorPath AnchorPath;
  15.   char String[1023];
  16. } __ALIGN (AnchorPath);
  17.  
  18. extern int CallMatchEnd;
  19.  
  20. void ProcessDir1 (int, char *, void (*)(char *));
  21. void ProcessDir2 (int, struct AVLTree *, void (*)(struct AnyNode *));
  22.  
  23. #endif /* PROCESSDIR_H */
  24.